home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / pyshared / chardet / constants.py < prev    next >
Text File  |  2006-10-21  |  1KB  |  48 lines

  1. ######################## BEGIN LICENSE BLOCK ########################
  2. # The Original Code is Mozilla Universal charset detector code.
  3. #
  4. # The Initial Developer of the Original Code is
  5. # Netscape Communications Corporation.
  6. # Portions created by the Initial Developer are Copyright (C) 2001
  7. # the Initial Developer. All Rights Reserved.
  8. #
  9. # Contributor(s):
  10. #   Mark Pilgrim - port to Python
  11. #   Shy Shalom - original C code
  12. #
  13. # This library is free software; you can redistribute it and/or
  14. # modify it under the terms of the GNU Lesser General Public
  15. # License as published by the Free Software Foundation; either
  16. # version 2.1 of the License, or (at your option) any later version.
  17. # This library is distributed in the hope that it will be useful,
  18. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  20. # Lesser General Public License for more details.
  21. # You should have received a copy of the GNU Lesser General Public
  22. # License along with this library; if not, write to the Free Software
  23. # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  24. # 02110-1301  USA
  25. ######################### END LICENSE BLOCK #########################
  26.  
  27. _debug = 0
  28.  
  29. eDetecting = 0
  30. eFoundIt = 1
  31. eNotMe = 2
  32.  
  33. eStart = 0
  34. eError = 1
  35. eItsMe = 2
  36.  
  37. SHORTCUT_THRESHOLD = 0.95
  38.  
  39. import __builtin__
  40. if not hasattr(__builtin__, 'False'):
  41.     False = 0
  42.     True = 1
  43. else:
  44.     False = __builtin__.False
  45.     True = __builtin__.True
  46.